Disassembler - vertaling naar spaans
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

Disassembler - vertaling naar spaans

COMPUTER PROGRAM THAT TRANSLATES MACHINE LANGUAGE INTO ASSEMBLY LANGUAGE
Disassembly; PE File Explorer; Commenting disassembler; List of disassemblers; Length disassembler; Length disassembler engine

Disassembler         
Desensamblar
disassembly         
(n.) = desensamblaje, desmontaje
Ex: Step-by-step procedures are described for the disassembly, reassembly, maintenance, and repair of submarine periscopes.
assembly1      
(n.) = montaje, ensamblaje
Ex: This is an application area of artificial intelligence that deals with the assembly of complex systems from a set of simple components.
----
* assembly language = lenguaje ensamblador
* assembly line = cadena de montaje
* assembly plant = planta de montaje
* car assembly line = línea de montaje de coches
* carriage assembly = ensamblaje de transporte
* disassembly [dis-assembly] = desensamblaje, desmontaje
* impression assembly = mecanismo de presión
* reassembly [re-assembly] = reensamblaje
* self-assembly = autoensamblaje

Definitie

Packet Assembler/Disassembler
(PAD) Hardware or software device for splitting a data stream into discrete packets for transmission over some medium and then reforming the stream(s) at the receiver. The term is most often used for interfaces to X.25 lines. (1995-01-31)

Wikipedia

Disassembler

A disassembler is a computer program that translates machine language into assembly language—the inverse operation to that of an assembler. Disassembly, the output of a disassembler, is often formatted for human-readability rather than suitability for input to an assembler, making it principally a reverse-engineering tool. Common uses of disassemblers include recovering source code of a program whose original source was lost, malware analysis, modifying software (such as ROM hacking), and software cracking.

A disassembler differs from a decompiler, which targets a high-level language rather than an assembly language.

Assembly language source code generally permits the use of constants and programmer comments. These are usually removed from the assembled machine code by the assembler. If so, a disassembler operating on the machine code would produce disassembly lacking these constants and comments; the disassembled output becomes more difficult for a human to interpret than the original annotated source code. Some disassemblers provide a built-in code commenting feature where the generated output gets enriched with comments regarding called API functions or parameters of called functions. Some disassemblers make use of the symbolic debugging information present in object files such as ELF. For example, IDA allows the human user to make up mnemonic symbols for values or regions of code in an interactive session: human insight applied to the disassembly process often parallels human creativity in the code writing process.